home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Application / WindowEventHandler.h < prev    next >
Text File  |  2000-06-23  |  422b  |  22 lines

  1. // WindowEventHandler.h
  2.  
  3. #ifndef WindowEventHandler_h
  4. #define WindowEventHandler_h
  5.  
  6. class ActivateEvent;
  7. class DeactivateEvent;
  8. class UpdateEvent;
  9.  
  10. class WindowEventHandler
  11.   {
  12.     protected:
  13.         ~WindowEventHandler()            {}
  14.     
  15.     public:
  16.         virtual void HandleActivateEvent( const ActivateEvent& );
  17.         virtual void HandleDeactivateEvent( const DeactivateEvent& );
  18.         virtual void HandleUpdateEvent( const UpdateEvent& );
  19.   };
  20.  
  21. #endif
  22.